(rmail-summary-next-msg): Fix number of dots in regexp.
authorRichard M. Stallman <rms@gnu.org>
Sat, 5 Jun 1993 21:18:11 +0000 (21:18 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 5 Jun 1993 21:18:11 +0000 (21:18 +0000)
lisp/mail/rmailsum.el

index b727951a772d8ad63c497d56b2af1ea7f06a2778..b9d4a82892ae4e9c7215c0a5a8a6295b0e343ea5 100644 (file)
@@ -367,7 +367,7 @@ messages, or backward if NUMBER is negative."
        (search (if (> number 0) 're-search-forward 're-search-backward))
        (non-del-msg-found nil))
     (while (and (> count 0) (setq non-del-msg-found
-                                 (or (funcall search "^.....[^D]" nil t)
+                                 (or (funcall search "^....[^D]" nil t)
                                      non-del-msg-found)))
       (setq count (1- count))))
   (beginning-of-line)